Self-Driving Car Engineer Nanodegree

Deep Learning

Project: Build a Traffic Sign Recognition Classifier

In this notebook, a template is provided for you to implement your functionality in stages, which is required to successfully complete this project. If additional code is required that cannot be included in the notebook, be sure that the Python code is successfully imported and included in your submission if necessary.

Note: Once you have completed all of the code implementations, you need to finalize your work by exporting the iPython Notebook as an HTML document. Before exporting the notebook to html, all of the code cells need to have been run so that reviewers can see the final implementation and output. You can then export the notebook by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.

In addition to implementing code, there is a writeup to complete. The writeup should be completed in a separate file, which can be either a markdown file or a pdf document. There is a write up template that can be used to guide the writing process. Completing the code template and writeup template will cover all of the rubric points for this project.

The rubric contains "Stand Out Suggestions" for enhancing the project beyond the minimum requirements. The stand out suggestions are optional. If you decide to pursue the "stand out suggestions", you can include the code in this Ipython notebook and also discuss the results in the writeup file.

Note: Code and Markdown cells can be executed using the Shift + Enter keyboard shortcut. In addition, Markdown cells can be edited by typically double-clicking the cell to enter edit mode.


Step 0: Load The Data

In [1]:
# Load pickled data
import pickle

# TODO: Fill this in based on where you saved the training and testing data

training_file = 'traffic-signs-data/train.p'
validation_file = 'traffic-signs-data/valid.p'
testing_file = 'traffic-signs-data/test.p'

with open(training_file, mode='rb') as f:
    train = pickle.load(f)
with open(validation_file, mode='rb') as f:
    valid = pickle.load(f)
with open(testing_file, mode='rb') as f:
    test = pickle.load(f)
    
X_train, y_train = train['features'], train['labels']
X_valid, y_valid = valid['features'], valid['labels']
X_test, y_test = test['features'], test['labels']

Step 1: Dataset Summary & Exploration

The pickled data is a dictionary with 4 key/value pairs:

  • 'features' is a 4D array containing raw pixel data of the traffic sign images, (num examples, width, height, channels).
  • 'labels' is a 1D array containing the label/class id of the traffic sign. The file signnames.csv contains id -> name mappings for each id.
  • 'sizes' is a list containing tuples, (width, height) representing the original width and height the image.
  • 'coords' is a list containing tuples, (x1, y1, x2, y2) representing coordinates of a bounding box around the sign in the image. THESE COORDINATES ASSUME THE ORIGINAL IMAGE. THE PICKLED DATA CONTAINS RESIZED VERSIONS (32 by 32) OF THESE IMAGES

Complete the basic data summary below. Use python, numpy and/or pandas methods to calculate the data summary rather than hard coding the results. For example, the pandas shape method might be useful for calculating some of the summary results.

Provide a Basic Summary of the Data Set Using Python, Numpy and/or Pandas

In [2]:
### Replace each question mark with the appropriate value. 
### Use python, pandas or numpy methods rather than hard coding the results
import numpy as np

# TODO: Number of training examples
n_train = len(X_train)

# TODO: Number of validation examples
n_validation = len(X_valid)

# TODO: Number of testing examples.
n_test = len(X_test)

# TODO: What's the shape of an traffic sign image?
image_shape = X_train[0].shape

# TODO: How many unique classes/labels there are in the dataset.
n_classes = len(np.unique(y_train))

print("Number of training examples =", n_train)
print("Number of validation examples =", n_validation)
print("Number of testing examples =", n_test)
print("Image data shape =", image_shape)
print("Number of classes =", n_classes)
Number of training examples = 34799
Number of validation examples = 4410
Number of testing examples = 12630
Image data shape = (32, 32, 3)
Number of classes = 43

Include an exploratory visualization of the dataset

Visualize the German Traffic Signs Dataset using the pickled file(s). This is open ended, suggestions include: plotting traffic sign images, plotting the count of each sign, etc.

The Matplotlib examples and gallery pages are a great resource for doing visualizations in Python.

NOTE: It's recommended you start with something simple first. If you wish to do more, come back to it after you've completed the rest of the sections. It can be interesting to look at the distribution of classes in the training, validation and test set. Is the distribution the same? Are there more examples of some classes than others?

A note on the output below

The three datasets provided in this project take on similar distributions of labels. I expect the NN to be deficient in classifying signs with labels in the 25-30 range despite a high test accuracy score. If all signs are equally important to classify, then the NN would benefit from a non-uniform subset strategy.

In [45]:
### Data exploration visualization code goes here.
### Feel free to use as many code cells as needed.
import matplotlib.pyplot as plt
# Visualizations will be shown in the notebook.
%matplotlib inline

# plot normalized distribution of labels for each data set
fig, axs = plt.subplots(1, 3, figsize=(12, 5), sharey=True)
axs[0].hist(y_train, bins=10, density=True)
axs[0].set_title('Train')
axs[1].hist(y_valid, bins=10, density=True)
axs[1].set_title('Validation')
axs[2].hist(y_test, bins=10, density=True)
axs[2].set_title('Test')
fig.text(0.02, 0.5, 'Density', va='center', rotation='vertical')
fig.text(0.3, 1, 'Normalized Dist of Labels', va='center', fontsize=12, weight='bold')
plt.show()

A note on the output below

Also, the training classes have a particularly large range. This means some classes are underrepresented. The NN won't perform as well on test data in those classes. I address this later with image augmentation to create additional data for these classes.

In [4]:
import collections as clc
y_counts = clc.Counter(y_train)
total = 0
for key, value in y_counts.items():
    total += value
y_mean = total / len(y_counts)
y_max = max(y_counts.keys(), key=(lambda k: y_counts[k]))
y_min = min(y_counts.keys(), key=(lambda k: y_counts[k]))
print('Average label class size: ', int(y_mean))
print('Largest label class size: ', y_counts[y_max])
print('Smallest label class size: ', y_counts[y_min])
Average label class size:  809
Largest label class size:  2010
Smallest label class size:  180
In [127]:
import random

fig = plt.figure()
for i in range(3):
    index = random.randint(0, n_train)
    image = X_train[index]
    label = y_train[index]
    axs = fig.add_subplot(1, 3, i + 1)
    axs.imshow(image)
    axs = plt.title('Index ' + str(index) + '\nLabel ' + str(label))
    axs = plt.axis('off')

Step 2: Design and Test a Model Architecture

Design and implement a deep learning model that learns to recognize traffic signs. Train and test your model on the German Traffic Sign Dataset.

The LeNet-5 implementation shown in the classroom at the end of the CNN lesson is a solid starting point. You'll have to change the number of classes and possibly the preprocessing, but aside from that it's plug and play!

With the LeNet-5 solution from the lecture, you should expect a validation set accuracy of about 0.89. To meet specifications, the validation set accuracy will need to be at least 0.93. It is possible to get an even higher accuracy, but 0.93 is the minimum for a successful project submission.

There are various aspects to consider when thinking about this problem:

  • Neural network architecture (is the network over or underfitting?)
  • Play around preprocessing techniques (normalization, rgb to grayscale, etc)
  • Number of examples per label (some have more than others).
  • Generate fake data.

Here is an example of a published baseline model on this problem. It's not required to be familiar with the approach used in the paper but, it's good practice to try to read papers like these.

Pre-process the Data Set (normalization, grayscale, etc.)

Minimally, the image data should be normalized so that the data has mean zero and equal variance. For image data, (pixel - 128)/ 128 is a quick way to approximately normalize the data and can be used in this project.

Other pre-processing steps are optional. You can try different techniques to see if it improves performance.

Use the code cell (or multiple code cells, if necessary) to implement the first step of your project.

In [147]:
# Example of my pre-process pipeline on an image
from scipy.ndimage import rotate
import cv2

img1 = X_train[25140]
img2 = cv2.cvtColor(img1, cv2.COLOR_RGB2GRAY)
img2 = cv2.equalizeHist(img2)
img2 = rotate(img2, 15)
img = np.array((img1, img2))
fig = plt.figure()
for i in range(2):
    axs = fig.add_subplot(1, 2, i + 1)
    axs.axis('off')
    axs.imshow(img[i], cmap='gray')
In [7]:
### Preprocess the data here. It is required to normalize the data. Other preprocessing steps could include 
### converting to grayscale, etc.
### Feel free to use as many code cells as needed.
def grayscale(images):
    '''Apply grayscale transform on array of images'''
    return np.array([cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) for img in images])

def equalize(images):
    '''Use histogram equalization technique to improve contrast'''
    return np.array([cv2.equalizeHist(img) for img in images])

def condition_images(images):
    '''Putting it all together'''
    return equalize(grayscale(images))
In [8]:
# prepare all of the image sets
X_train_norm = condition_images(X_train)
X_valid_norm = condition_images(X_valid)
X_test_norm = condition_images(X_test)
In [9]:
y_new = []

# create dictionary of labels needing additional images
y_supp = {}
for key, value in y_counts.items():
    if value < y_mean:
        y_supp.update({key:int(y_mean - value)})
        
for r in range(2):
    for idx, img in enumerate(X_train_norm):
        # check if label is in y_supp and whether more images are needed
        label = y_train[idx]
        if label in y_supp.keys() and y_supp[label] > 0:
            # rotate image
            angle = random.randint(-15, 15)
            rotated_img = rotate(img, angle, reshape=False)
            rotated_img = np.expand_dims(rotated_img, axis=0)
            if 'X_new' in locals():
                X_new = np.append(X_new, rotated_img, axis=0)
            else:
                X_new = rotated_img
            y_new.append(label)
            #update y_supp
            y_supp[label] -= 1

# append new images to train data
X_train_aug = np.concatenate((X_train_norm, X_new))
y_train_aug = np.concatenate((y_train, y_new))

print(len(X_train_aug), len(y_train_aug))
45013 45013
In [65]:
# Compare the old distribution of training set to augmented training set
fig, axs = plt.subplots(1, 2, sharey=True)
axs[0].hist(y_train, bins=43, density=True)
axs[0].set_title('Before')
axs[1].hist(y_train_aug, bins=43, density=True)
axs[1].set_title('After')
fig.text(0.02, 0.5, 'Density', va='center', rotation='vertical')
fig.text(0.3, 1, 'Augmentation to Supplement Training Data', va='center', fontsize=12, weight='bold')
plt.show()

Model Architecture

In [11]:
### Define your architecture here.
### Feel free to use as many code cells as needed.
import tensorflow as tf
from tensorflow.contrib.layers import flatten

def LeNet(x):    
    # Arguments used for tf.truncated_normal, randomly defines variables for the weights and biases for each layer
    mu = 0
    sigma = 0.1
    
    # normalize images
    norm = tf.map_fn(lambda a: tf.image.per_image_standardization(a), x)
    
    # TODO: Layer 1: Convolutional. Input = 32x32x1. Output = 28x28x6.
    conv1_w = tf.Variable(tf.truncated_normal(shape = (5, 5, 1, 6), mean = mu, stddev = sigma))
    conv1_b = tf.Variable(tf.zeros(6))
    conv1 = tf.nn.conv2d(norm, conv1_w, strides = (1, 1, 1, 1), padding = 'VALID')
    conv1 = tf.nn.bias_add(conv1, conv1_b)

    # TODO: Activation.
    conv1 = tf.nn.relu(conv1, name='conv1_layer')

    # TODO: Pooling. Input = 28x28x6. Output = 14x14x6.
    conv2 = tf.nn.max_pool(conv1, (1, 2, 2, 1), (1, 2, 2, 1), 'VALID')

    # TODO: Layer 2: Convolutional. Output = 10x10x16.
    conv2_w = tf.Variable(tf.truncated_normal(shape = (5, 5, 6, 16), mean = mu, stddev = sigma))
    conv2_b = tf.Variable(tf.zeros(16))
    conv2 = tf.nn.conv2d(conv2, conv2_w, strides = (1, 1, 1, 1), padding = 'VALID')
    conv2 = tf.nn.bias_add(conv2, conv2_b)
    
    # Copy tensor and give it a name to be called in step 4 visualization
    conv2_named = tf.nn.relu(conv2, name='conv2_layer')
    
    # TODO: Activation.
    conv2 = tf.nn.relu(conv2)

    # TODO: Pooling. Input = 10x10x16. Output = 5x5x16.
    conv2 = tf.nn.max_pool(conv2, ksize = (1, 2, 2, 1), strides = (1, 2, 2, 1), padding = 'VALID')

    # TODO: Flatten. Input = 5x5x16. Output = 400.
    conv2 = flatten(conv2)
    
    # TODO: Layer 3: Fully Connected. Input = 400. Output = 120.
    conv3_w = tf.Variable(tf.truncated_normal(shape = (400, 120), mean = mu, stddev = sigma))
    conv3_b = tf.Variable(tf.zeros(120))
    conv3 = tf.matmul(conv2, conv3_w) + conv3_b
    
    # TODO: Activation.
    conv3 = tf.nn.relu(conv3)

    # TODO: Layer 4: Fully Connected. Input = 120. Output = 84.
    conv4_w = tf.Variable(tf.truncated_normal(shape = (120, 84), mean = mu, stddev = sigma))
    conv4_b = tf.Variable(tf.zeros(84))
    conv4 = tf.add(tf.matmul(conv3, conv4_w), conv4_b)
    
    # TODO: Activation.
    conv4 = tf.nn.relu(conv4)

    # TODO: Layer 5: Fully Connected. Input = 84. Output = 43.
    conv5_w = tf.Variable(tf.truncated_normal(shape = (84, 43), mean = mu, stddev = sigma))
    conv5_b = tf.Variable(tf.zeros(43))
    logits = tf.add(tf.matmul(conv4, conv5_w), conv5_b)
    
    return logits
In [12]:
# Features and Labels
# x is a placeholder for a batch of input images
# y is a placeholder for a batch of output labels
x = tf.placeholder(tf.float32, (None, 32, 32, 1))
y = tf.placeholder(tf.int32, (None))
one_hot_y = tf.one_hot(y, 43)
In [13]:
EPOCHS = 25
BATCH_SIZE = 128
RATE = 0.0008

logits = LeNet(x)
cross_entropy = tf.nn.softmax_cross_entropy_with_logits(labels=one_hot_y, logits=logits)
loss_operation = tf.reduce_mean(cross_entropy)
optimizer = tf.train.AdamOptimizer(learning_rate = RATE)
training_operation = optimizer.minimize(loss_operation)

correct_prediction = tf.equal(tf.argmax(logits, 1), tf.argmax(one_hot_y, 1))
accuracy_operation = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
saver = tf.train.Saver()

def evaluate(X_data, y_data):
    num_examples = len(X_data)
    total_accuracy = 0
    sess = tf.get_default_session()
    for offset in range(0, num_examples, BATCH_SIZE):
        batch_x, batch_y = X_data[offset:offset+BATCH_SIZE], y_data[offset:offset+BATCH_SIZE]
        accuracy = sess.run(accuracy_operation, feed_dict={x: batch_x, y: batch_y})
        total_accuracy += (accuracy * len(batch_x))
    return total_accuracy / num_examples

Train, Validate and Test the Model

A validation set can be used to assess how well the model is performing. A low accuracy on the training and validation sets imply underfitting. A high accuracy on the training set but low accuracy on the validation set implies overfitting.

In [14]:
### Train your model here.
### Calculate and report the accuracy on the training and validation set.
### Once a final model architecture is selected, 
### the accuracy on the test set should be calculated and reported as well.
### Feel free to use as many code cells as needed.
from sklearn.utils import shuffle

X_train_final = np.expand_dims(X_train_aug, axis=3)
y_train_final = y_train_aug
X_validation_final = np.expand_dims(X_valid_norm, axis=3)
y_validation_final = y_valid

with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())
    num_examples = len(X_train_final)
    
    print("Training...")
    print()
    for i in range(EPOCHS):
        X_train_final, y_train_final = shuffle(X_train_final, y_train_final)
        for offset in range(0, num_examples, BATCH_SIZE):
            end = offset + BATCH_SIZE
            batch_x, batch_y = X_train_final[offset:end], y_train_final[offset:end]
            sess.run(training_operation, feed_dict={x: batch_x, y: batch_y})
            
        validation_accuracy = evaluate(X_validation_final, y_validation_final)
        print("EPOCH {} ...".format(i+1))
        print("Validation Accuracy = {:.3f}".format(validation_accuracy))
        print()
        
    saver.save(sess, './lenet')
    print("Model saved")
Training...

EPOCH 1 ...
Validation Accuracy = 0.838

EPOCH 2 ...
Validation Accuracy = 0.895

EPOCH 3 ...
Validation Accuracy = 0.914

EPOCH 4 ...
Validation Accuracy = 0.912

EPOCH 5 ...
Validation Accuracy = 0.925

EPOCH 6 ...
Validation Accuracy = 0.937

EPOCH 7 ...
Validation Accuracy = 0.924

EPOCH 8 ...
Validation Accuracy = 0.932

EPOCH 9 ...
Validation Accuracy = 0.931

EPOCH 10 ...
Validation Accuracy = 0.934

EPOCH 11 ...
Validation Accuracy = 0.929

EPOCH 12 ...
Validation Accuracy = 0.933

EPOCH 13 ...
Validation Accuracy = 0.935

EPOCH 14 ...
Validation Accuracy = 0.927

EPOCH 15 ...
Validation Accuracy = 0.935

EPOCH 16 ...
Validation Accuracy = 0.942

EPOCH 17 ...
Validation Accuracy = 0.923

EPOCH 18 ...
Validation Accuracy = 0.946

EPOCH 19 ...
Validation Accuracy = 0.948

EPOCH 20 ...
Validation Accuracy = 0.950

EPOCH 21 ...
Validation Accuracy = 0.944

EPOCH 22 ...
Validation Accuracy = 0.937

EPOCH 23 ...
Validation Accuracy = 0.941

EPOCH 24 ...
Validation Accuracy = 0.944

EPOCH 25 ...
Validation Accuracy = 0.953

Model saved
In [66]:
# Evaluate overall accuracy on training dataset
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    test_accuracy = evaluate(X_train_final, y_train_final)
    print("Training Accuracy = {:.3f}".format(test_accuracy))
Training Accuracy = 0.999
In [15]:
# Evaluate overall accuracy on test dataset
X_test_aug = np.expand_dims(condition_images(X_test), axis=3)
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    test_accuracy = evaluate(X_test_aug, y_test)
    print("Test Accuracy = {:.3f}".format(test_accuracy))
Test Accuracy = 0.933

Step 3: Test a Model on New Images

To give yourself more insight into how your model is working, download at least five pictures of German traffic signs from the web and use your model to predict the traffic sign type.

You may find signnames.csv useful as it contains mappings from the class id (integer) to the actual sign name.

Load and Output the Images

In [16]:
### Load the images and plot them here.
### Feel free to use as many code cells as needed.
# load images into array
Files = "MyImage1.jpg", "MyImage2.jpg", "MyImage3.jpg", "MyImage4.jpg", "MyImage5.jpg"
path = "traffic-signs-data/"
Images = np.array([np.array(cv2.imread(path + file)) for file in Files])
Images = np.array([cv2.cvtColor(img, cv2.COLOR_BGR2RGB) for img in Images])

# plot images
fig = plt.figure(figsize=(50, 50))
for i in range(len(Images)):
    sub = fig.add_subplot(1, len(Images), i + 1)
    sub.imshow(Images[i])
    sub.set_title('Image: ' + str(i+1), fontsize=26)
In [17]:
# plot a legend to determine labels of new images
fig = plt.figure(figsize=(50, 50))
Y = []
j = 0
for i in range(len(X_test)):
    label = y_test[i]
    if not (label in Y):
        sub = fig.add_subplot(8, 6, j+1)
        sub.imshow(X_test[i])
        sub.set_title(label, fontsize=26)
        Y.append(label)
        j += 1
        if j == 42:
            break
    
In [18]:
# use legend above to define labels for my images
MyLabels = np.array([8, 36, 25, 38, 17])
In [19]:
# Pre-Process images for the NN
from skimage import img_as_ubyte

# convert images to 8-bit unsigned
I_converted = np.array([img_as_ubyte(img) for img in Images])

# resize images to 32x32
I_scaled = np.array([cv2.resize(img, (32, 32)) for img in I_converted])

# equalize and grayscale
I_conditioned = condition_images(I_scaled)

# Reshape array to 5x32x32x1
I_conditioned = np.expand_dims(I_conditioned, axis=3)

Predict the Sign Type for Each Image

In [31]:
### Run the predictions here and use the model to output the prediction for each image.
### Make sure to pre-process the images with the same pre-processing pipeline used earlier.
### Feel free to use as many code cells as needed.
# Run all 5 images
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    result = sess.run(tf.argmax(logits, 1) , feed_dict ={x: I_conditioned})
In [34]:
# plot images and results
fig = plt.figure(figsize=(50, 50))
for i in range(len(Images)):
    sub = fig.add_subplot(1, len(Images), i + 1)
    sub.imshow(Images[i])
    sub.set_title('Result = sign #{}\nExpected = sign #{}'.format(round(result[i]), MyLabels[i]) , fontsize=40)

Analyze Performance

In [22]:
### Calculate the accuracy for these 5 new images. 
### For example, if the model predicted 1 out of 5 signs correctly, it's 20% accurate on these new images.
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    test_accuracy = evaluate(I_conditioned, MyLabels)
    print("Accuracy on my images = {:.3f}".format(test_accuracy))
Accuracy on my images = 0.800

Output Top 5 Softmax Probabilities For Each Image Found on the Web

For each of the new images, print out the model's softmax probabilities to show the certainty of the model's predictions (limit the output to the top 5 probabilities for each image). tf.nn.top_k could prove helpful here.

The example below demonstrates how tf.nn.top_k can be used to find the top k predictions for each image.

tf.nn.top_k will return the values and indices (class ids) of the top k predictions. So if k=3, for each sign, it'll return the 3 largest probabilities (out of a possible 43) and the correspoding class ids.

Take this numpy array as an example. The values in the array represent predictions. The array contains softmax probabilities for five candidate images with six possible classes. tf.nn.top_k is used to choose the three classes with the highest probability:

# (5, 6) array
a = np.array([[ 0.24879643,  0.07032244,  0.12641572,  0.34763842,  0.07893497,
         0.12789202],
       [ 0.28086119,  0.27569815,  0.08594638,  0.0178669 ,  0.18063401,
         0.15899337],
       [ 0.26076848,  0.23664738,  0.08020603,  0.07001922,  0.1134371 ,
         0.23892179],
       [ 0.11943333,  0.29198961,  0.02605103,  0.26234032,  0.1351348 ,
         0.16505091],
       [ 0.09561176,  0.34396535,  0.0643941 ,  0.16240774,  0.24206137,
         0.09155967]])

Running it through sess.run(tf.nn.top_k(tf.constant(a), k=3)) produces:

TopKV2(values=array([[ 0.34763842,  0.24879643,  0.12789202],
       [ 0.28086119,  0.27569815,  0.18063401],
       [ 0.26076848,  0.23892179,  0.23664738],
       [ 0.29198961,  0.26234032,  0.16505091],
       [ 0.34396535,  0.24206137,  0.16240774]]), indices=array([[3, 0, 5],
       [0, 1, 4],
       [0, 5, 1],
       [1, 3, 5],
       [1, 4, 3]], dtype=int32))

Looking just at the first row we get [ 0.34763842, 0.24879643, 0.12789202], you can confirm these are the 3 largest probabilities in a. You'll also notice [3, 0, 5] are the corresponding indices.

In [77]:
### Print out the top five softmax probabilities for the predictions on the German traffic sign images found on the web. 
### Feel free to use as many code cells as needed.
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    top_k_result = sess.run(tf.nn.top_k(tf.nn.softmax(logits), k=5) , feed_dict ={x: I_conditioned})
print(top_k_result)
TopKV2(values=array([[  6.00642443e-01,   3.99334937e-01,   2.27067667e-05,
          3.46417139e-09,   5.13126813e-13],
       [  9.99997854e-01,   7.56785369e-07,   5.43457531e-07,
          4.14550954e-07,   4.13033234e-07],
       [  9.08747971e-01,   9.12297219e-02,   1.89581551e-05,
          2.92170853e-06,   1.58481711e-07],
       [  1.00000000e+00,   9.31250577e-10,   7.88476159e-11,
          4.97516230e-11,   3.41581960e-13],
       [  9.99790370e-01,   2.09605700e-04,   2.44228993e-09,
          4.92479668e-10,   1.28713318e-10]], dtype=float32), indices=array([[ 0,  8,  4,  1,  5],
       [36, 20, 17, 37, 34],
       [25, 22, 31, 29, 24],
       [38, 23, 20,  9, 41],
       [17, 34, 38, 23, 12]], dtype=int32))
In [108]:
# Graph the top five probabilities for each image
fig = plt.figure(figsize=(18, 3))
for i in range(len(Images)):
    sub = fig.add_subplot(1, len(Images), i + 1)
    x = top_k_result.indices[i]
    y = top_k_result.values[i]
    sub.scatter(x,y)
    sub.set_title('image {}'.format(i+1))
    sub.set_ylim((-0.05,1.1))
    sub.set_xlim((0,42))
    for r in range(5):
        sub.annotate('  {}'.format(x[r]), (x[r],y[r]))

Project Writeup

Once you have completed the code implementation, document your results in a project writeup using this template as a guide. The writeup can be in a markdown or pdf file.

Note: Once you have completed all of the code implementations and successfully answered each question above, you may finalize your work by exporting the iPython Notebook as an HTML document. You can do this by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.


Step 4 (Optional): Visualize the Neural Network's State with Test Images

This Section is not required to complete but acts as an additional excersise for understaning the output of a neural network's weights. While neural networks can be a great learning device they are often referred to as a black box. We can understand what the weights of a neural network look like better by plotting their feature maps. After successfully training your neural network you can see what it's feature maps look like by plotting the output of the network's weight layers in response to a test stimuli image. From these plotted feature maps, it's possible to see what characteristics of an image the network finds interesting. For a sign, maybe the inner network feature maps react with high activation to the sign's boundary outline or to the contrast in the sign's painted symbol.

Provided for you below is the function code that allows you to get the visualization output of any tensorflow weight layer you want. The inputs to the function should be a stimuli image, one used during training or a new one you provided, and then the tensorflow variable name that represents the layer's state during the training process, for instance if you wanted to see what the LeNet lab's feature maps looked like for it's second convolutional layer you could enter conv2 as the tf_activation variable.

For an example of what feature map outputs look like, check out NVIDIA's results in their paper End-to-End Deep Learning for Self-Driving Cars in the section Visualization of internal CNN State. NVIDIA was able to show that their network's inner weights had high activations to road boundary lines by comparing feature maps from an image with a clear path to one without. Try experimenting with a similar test to show that your trained network's weights are looking for interesting features, whether it's looking at differences in feature maps from images with or without a sign, or even what feature maps look like in a trained network vs a completely untrained one on the same sign image.

Combined Image

Your output should look something like this (above)

In [24]:
### Visualize your network's feature maps here.
### Feel free to use as many code cells as needed.

# image_input: the test image being fed into the network to produce the feature maps
# tf_activation: should be a tf variable name used during your training procedure that represents the calculated state of a specific weight layer
# activation_min/max: can be used to view the activation contrast in more detail, by default matplot sets min and max to the actual min and max values of the output
# plt_num: used to plot out multiple different weight feature map sets on the same block, just extend the plt number for each new feature map entry

def outputFeatureMap(image_input, tf_activation, activation_min=-1, activation_max=-1 ,plt_num=1):
    # Here make sure to preprocess your image_input in a way your network expects
    # with size, normalization, ect if needed
    # image_input =
    # Note: x should be the same name as your network's tensorflow data placeholder variable
    # If you get an error tf_activation is not defined it may be having trouble accessing the variable from inside a function
    activation = tf_activation.eval(session=sess,feed_dict={x : image_input})
    featuremaps = activation.shape[3]
    plt.figure(plt_num, figsize=(15,15))
    for featuremap in range(featuremaps):
        plt.subplot(6,8, featuremap+1) # sets the number of feature maps to show on each row and column
        plt.title('FeatureMap ' + str(featuremap)) # displays the feature map number
        if activation_min != -1 & activation_max != -1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin =activation_min, vmax=activation_max, cmap="gray")
        elif activation_max != -1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmax=activation_max, cmap="gray")
        elif activation_min !=-1:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin=activation_min, cmap="gray")
        else:
            plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", cmap="gray")
In [35]:
# Show first convolutional layer
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    img = np.asarray([I_conditioned[1]])
    layer = tf.get_default_graph().get_tensor_by_name("conv1_layer:0")
    outputFeatureMap(img, layer)
In [36]:
# Show second convolutional layer
with tf.Session() as sess:
    saver.restore(sess, tf.train.latest_checkpoint('.'))
    img = np.asarray([I_conditioned[1]])
    layer = tf.get_default_graph().get_tensor_by_name("conv2_layer:0")
    outputFeatureMap(img, layer)